If the selection data has already been cleared we should just bail out.
Fixes: #3404
SelectionChanged *changed;
changed = g_object_get_data (G_OBJECT (accessible), "accessible-selection-data");
+ if (changed == NULL)
+ return;
g_signal_handlers_disconnect_by_func (accessible, changed->changed, changed->data);
SelectionChanged *changed;
changed = g_object_get_data (G_OBJECT (accessible), "accessible-selection-data");
+ if (changed == NULL)
+ return;
g_signal_handlers_disconnect_by_func (notebook, changed->changed, changed->data);